home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 (Alt) / MACD 5.bin / workbench / monitory / amyload / windowinfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-11-15  |  325 b   |  16 lines

  1. #define BORDERWIDTH  2
  2. #define BORDERHEIGHT 1
  3.  
  4. #define WINDOWINFO(window) ((WindowInfo *)window->UserData)
  5.  
  6. typedef struct {
  7.     MinList loadrecords;
  8.     short   leftedge;
  9.     short   rightedge;
  10.     short   width;
  11.     short   topedge;
  12.     short   bottomedge;
  13.     short   height;
  14.     unsigned char back_pen_num;
  15. } WindowInfo;
  16.